@charset "UTF-8";
/* 轮播图 */
.loop-replace-img {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.loop-replace-img .imgs {
  width: 100%;
  transition: transform .4s;
}

.loop-replace-img .imgs::after {
  content: '';
  display: block;
  clear: both;
}

.loop-replace-img .imgs li {
  float: left;
}

.loop-replace-img .imgs li img {
  width: 100%;
}

.loop-replace-img .spots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
}

.loop-replace-img .spots li {
  float: left;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
}

.loop-replace-img .spots li.active {
  background: white;
}

.loop-replace-img .btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 30px;
  color: white;
}

.loop-replace-img .btn .btn-l, .loop-replace-img .btn .btn-r {
  width: 20px;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  line-height: 30px;
  cursor: pointer;
}


